home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000323_news@columbia.edu_Fri Sep 8 23:18:45 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18394
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 8 Sep 1995 19:18:48 -0400
  3. Received: by apakabar.cc.columbia.edu id AA04218
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 8 Sep 1995 19:18:47 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: C-Kemir from a cron job
  9. Date: 8 Sep 1995 23:18:45 GMT
  10. Organization: Columbia University
  11. Lines: 28
  12. Message-Id: <42qj0l$43o@apakabar.cc.columbia.edu>
  13. References: <DELqA9.I24@utnetw.utoledo.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <DELqA9.I24@utnetw.utoledo.edu>,
  18. craig szczublewski <crszczub@cse.utoledo.edu> wrote:
  19. >Is there anything special that would have to be specified from c-kermit
  20. >in order to run an upload (rather large) in the background (specifically
  21. >timed in the evening).  I've tried running it in the background and it 
  22. >crashes on me and fills up my /tmp filesystem with some junk file.
  23. >
  24. >anyone else ever tried this?
  25. >
  26. Lots of people, including me, do it all the time.  Kermit does not write
  27. into /tmp unless you tell it to -- it's probably cron or something related
  28. to it.
  29.  
  30. Unfortunately, your question is much to vague to result in a useful
  31. answer.  What operating system and version?  Which version of Kermit?
  32. Exactly how are you starting it and where is it getting its commands from
  33. and what are the commands?  etc etc.
  34.  
  35. In general, the best method is to tell Kermit to read its commands from
  36. a file, and to redirect its standard output to some other file, for
  37. example (a cron job that runs every four hours):
  38.  
  39.  0 0,4,8,12,16,20 * * * (cd /usr/olaf; kermit -y /oofa.scr > oofa.log)
  40.  
  41. where oofa.scr is a file containing all the commands you want C-Kermit 
  42. to execute.
  43.  
  44. - Frank